home *** CD-ROM | disk | FTP | other *** search
/ Mac Expert 1995 Winter / Mac Expert - Winter 95.iso / Les fichiers / Communications / Internet / HTML Web Weaver 2.5.1 ƒ / HTML Web Weaver / HTML Web Weaver.rsrc / TEXT_8887_Tutorial.txt < prev    next >
Encoding:
Text File  |  1995-04-03  |  12.7 KB  |  185 lines

  1. <HTML> 
  2. <HEAD> 
  3. <TITLE>How to Web Weave with Web Weaver</TITLE>
  4. <CENTER><H1>How to Web Weave with Web Weaver</H1></CENTER>
  5. <HR> <PRE><a href=mailto:Robert.Best@potsdam.edu>
  6. <FONT SIZE=7>W      W                  </FONT>
  7. <FONT SIZE=6>     e          e                      
  8.           b          a                 
  9.                          v             
  10.                               e        
  11.                                    r   </FONT></a>
  12. </PRE>
  13. <PRE>
  14. </PRE><P><HR NOSHADE> 
  15. </HEAD> 
  16. <BODY> 
  17. <H3>Topics</H3>
  18. <UL><LI> <A HREF = "#WWW">What is World Wide Web?</A>
  19. <LI> <A HREF = "#Intro To WW?">What is HTML Web Weaver?</A>
  20. <LI> How do I....
  21. <UL><LI> <A HREF = "#Text Styles">make different styles of text?</A>
  22. <LI> <A HREF = "#Adding Graphics">add those cool graphics?</A>
  23. <LI> <A HREF = "#Connecting/Linking">connect my page to other peoples pages and other services?</A>
  24. <LI> <A HREF = "#Getting Started">get started?</A>
  25. </UL>
  26. <LI><A HREF = "#Why WW?">What does HTML Web Weaver offer to make all this easier/better?</A>
  27. </UL><P>
  28. <HR WIDTH=50> <P>
  29. <HR WIDTH=300> <P>
  30. <HR WIDTH=50> <P>
  31. <P><HR><A NAME="WWW"><CENTER><H2>What is World Wide Web?</H2></CENTER></A>
  32. The World Wide Web in simplest terms is an internationally networked organized collection of information.<P>
  33. What does this mean?<P>
  34. Basically this means using the right software you can read, see and even hear specific information that someone else has made public via your computer.<P>
  35. Okay okay, so you probably already know this since you are using a Web Browser <I>(a software program that alow you to interact with the World Wide Web)</I>  right now, but what kind of tutorial would this be without a definition of the Web?<P>
  36.  
  37. <P><HR><A NAME="Intro To WW?"><CENTER><H2>What is HTML Web Weaver?</H2></CENTER></A>
  38. HTML Web Weaver is a text editor that can assist you in developing World Wide Web pages <I>(a 'page' is a unit of information in the world of World Wide Web)</I><P>
  39. Web Pages are written in a text language called <EM>HyperText Markup Language</EM>, or <EM>HTML</EM> for short. This language is then read by your Web Browser and turned into the information, you the user see here.<P>
  40.  
  41. Example:<P>
  42.  
  43. <BLOCKQUOTE>Web Pages are written in a text language called <EM>HyperText Markup Language</EM>, or <EM>HTML</EM> for short. This language is then read by your Web Browser and turned into the information, you the user see here.</BLOCKQUOTE>
  44.  
  45. As you can see above, special characters are used to tell your Web Browser to do special things. These commands are called <EM>'tags'</EM>. As you can probably imagine, the variety of tags needed to create a <I>'nice'</I> Web page such as this one can be quite large and complex. HTML Web Weaver works by making these tags easier to use and require less memorization of their exact uses.
  46.  
  47. <P><HR><CENTER><A NAME="Text Styles"><H2>Text Styles</H2></CENTER></A>
  48. To draw different text styles in your Web pages you need to use specific tags around text.<P>
  49. Example:<BR>
  50. <B>This sentence should display in bold</B><BR>
  51. Would result in...<BR>
  52. <B>This sentence should display in bold</B><P>
  53. Multiple styles can also be used.
  54. Example:<BR>
  55. <B></I>This sentence should display in bold and Italic</I></B><BR>
  56. Would result in...<BR>
  57. <B><I>This sentence should display in bold and Italic</I></B><P>
  58. Here is a list of some of the text styles available with HTML Web Weaver...
  59. <UL><LI> Address - Use this to label text as being an address (usually email)
  60. <UL><LI> Example: <ADDRESS>Robert.Best@potsdam.edu</ADDRESS></UL>
  61. <LI> Blink - Use this to label text as blinking
  62. <UL><LI> Example: <BLINK>Blink</BLINK></UL>
  63. <LI> Block Quote - Use this to label text as being quote
  64. <UL><LI> Example: <BLOCKQUOTE>This is an example of how text would look like if you used the block quote HTML tag in your World Wide Web page.</BLOCKQUOTE></UL>
  65. <LI> Bold - Use this to label text as being in bold type face
  66. <UL><LI> Example: <B>Bold</B></UL>
  67. <LI> Center - Use this to label text as being centered on the page
  68. <UL><LI> Example: <CENTER>Center</CENTER></UL>
  69. <LI> Cite - Use this to label text as being a title of a book or movie
  70. <UL><LI> Example: <CITE>Cite</CITE></UL>
  71. <LI> Code - Use this to label text as being computer code
  72. <UL><LI> Example: <CODE>Code</CODE></UL>
  73. <LI> Definition - Use this to label text as a definition
  74. <UL><LI> Example: <DFN>Definition</DFN></UL>
  75. <LI> Emphasis - Use this to label text as needing emphasis
  76. <UL><LI> Example: <EM>Emphasis</EM></UL>
  77. <LI> Fixed Width - Use this to label text to be drawn in a mono spaced font
  78. <UL><LI> Example: <TT>Fixed Width</TT></UL>
  79. <LI> Font Size - Use this to label text as a specific font size
  80. <UL><LI> Example: <FONT SIZE=1>F</FONT><FONT SIZE=2>o</FONT><FONT SIZE=3>n</FONT><FONT SIZE=4>t</FONT> <FONT SIZE=5>S</FONT><FONT SIZE=6>i</FONT><FONT SIZE=7>z</FONT><FONT SIZE=6>e</FONT><FONT SIZE=5>s</FONT></UL>
  81. <LI> Header - Use this to label text as being a header in a specific font size
  82. <UL><LI> Example: <H1>Header Size 1</H1> <H2>Header Size 2</H2> <H3>Header Size 3</H3></UL>
  83. <LI> Italic - Use this to label text as being in italic type face
  84. <UL><LI> Example: <I>Italic</I></UL>
  85. <LI> Keyboard - Use this to label text as being from a typewriter
  86. <UL><LI> Example: <KBD>Keyboard</KBD></UL>
  87. <LI> Preformated text - Use this to label text to be draw '<I>as is</I>', just as if it were done on a typewriter, including spaces and carriage returns.
  88. <UL><LI> <PRE>Example: This is an example of how preformated text would look like in your World Wide Web browser.</PRE></UL>
  89. <LI> Sample - Use this to label text as being a sample item
  90. <UL><LI> Example: <SAMP>Sample</SAMP></UL>
  91. <LI> Strong Emphasis - Use this to label text as needing strong emphasis
  92. <UL><LI> Example: <STRONG>Strong Emphasis</STRONG></UL>
  93. <LI> Variable - Use this to label text as being a variable item
  94. <UL><LI> Example: <VAR>Variable</VAR></UL>
  95. </UL>
  96.  
  97.  
  98. <P><HR><CENTER><A NAME="Adding Graphics"><H2>Graphics and Images</H2></CENTER></A>
  99. So your wondering how all those other people put those cool pictures  on their Web pages?
  100. It's actually quite easy once you know a few things about how the Web uses graphics.
  101. <OL><LI> For starters, your graphics have to be saved in a special format called <EM>'GIF'</EM> <I>(there are other options, but GIF is by far the easiest and most widely used)</I>. To get your graphics into GIF format I recommend a shareware utility for converting most graphic files called <A HREF = "http://hyperarchive.lcs.mit.ed/HyperArchive/Archive/grf/util/gif-converter-237.hqx">'GIFConverter'</A>.
  102. <LI> Second you must properly place your files. In HTML your page document can only easily access other files <I>(in this case your graphic file)</I> if the files are either in the same folder as your web document or in subfolders <I>(or subdirectories for all you non-Macintosh people)</I>. I can't emphasis this enough, most of us have and probably will make this mistakes with this. <UL><LI> Note: You must also name your GIF files with the suffix <I>'.gif'</I>.
  103. </UL>
  104. <LI> Third you have to add the proper HTML tag in your Web page to connect your page with your GIF file. To do this you use the <I>'Files and Images'</I> command in HTML Web Weaver. This intern brings up Web Weaver's <I>'Files and Images Tag Editor'</I> which allows you to choose the file and settings you want. It is very important that before you are finished in the <I>'Files and Images Tag Editor'</I> you make sure the <I>'Directory Path'</I> field displays the correct path. The correct path <EM>SHOULD</EM> consists of the path <I>FROM</I> your Web document to your GIF file. <UL><LI> Example: If your Web file is in the folder <I>'Web Files Folder'</I> and your GIF file is in the subfolder <I>'My GIF files'</I> and is called <I>'MyGIF.gif'</I>. The your proper path should be: <SAMP>My GIF Files/MyGIF.gif</SAMP> <I>(Notice that the '<KBD>/</KBD>'character separates folders)</I>.
  105. </UL>
  106. </OL>
  107.  
  108.  
  109.  
  110. <P><HR><CENTER><A NAME="Connecting/Linking"><H2>Connecting/Linking</H2></CENTER></A>
  111. Making connections <I>(better know as <EM>links</EM>)</I> from your document to other resources such as...
  112. <UL><LI> other Web pages
  113. <LI> other Web Servers
  114. <LI> FTP servers
  115. <LI> news servers
  116. <LI> WAIS servers
  117. <LI> gopher servers
  118. <LI> telnet connections
  119. </UL>
  120. are created using Web Weaver's <I>'Links'</I> command.<BR>
  121. Once in Web Weaver's 'Link Editor' you are given options of link types...
  122. <UL><LI> http
  123. <UL><LI> This is a link to a different Web server</UL>
  124. <LI> gopher
  125. <UL><LI> This is a link to gopher server</UL>
  126. <LI> telnet
  127. <UL><LI> This is a link to make a telnet connection</UL>
  128. <LI> ftp
  129. <UL><LI> This is a link to ftp server</UL>
  130. <LI> wais
  131. <UL><LI> This is a link to wais server</UL>
  132. <LI> news
  133. <UL><LI> This is a link to news</UL>
  134. <LI> local html file
  135. <UL><LI> This is a link to a web page on the <I>same</I> Web server.
  136. <UL><LI> Note: The rules used for the location of graphic files and the path's from your page to your document <A HREF = "#Adding Graphics">discussed above</A> apply to local html file links.
  137. </UL></UL>
  138. </UL>
  139.  
  140. <P><HR><CENTER><A NAME="Getting Started"><H2>Getting Started The Right Way</H2></CENTER></A>
  141. Ready to get started?
  142. Before starting there are a few other HTML tags you should keep in mind...
  143. <UL><LI> Paragraph - In HTML paragraphs are separated with the Paragraph tag <I>(looks like a backwards P in Web Weaver)</I>
  144. <LI> Line Breaks - In HTML link breaks <I>(usually referred to as carriage returns in most other programs)</I> are separated by the Line Break tag
  145. <LI> Special Characters - In HTML there are special characters that can not easily be typed. As you might guess you can not just type a < or > any where in your document because they mean special things in HTML <I>(ie. used with tags)</I> so you need to insert special HTML tags <I>(called 'special characters' in Web Weaver)</I> in place of these characters.
  146. <LI> HTML - Use this tag when you want specify what sections of a document are written in HTML.
  147. <LI> Head - Use this tag when you want to specify the head of your HTML document
  148. <LI> Body - Use this tag when you want to specify the body of your HTML document
  149. <LI> Title - Use this tag to specify the title of your Web page <I>(In most Web Browser this becomes the name of the current window)</I>
  150. <LI> Comment - Use this tag when you want to add comments in your HTML documents that you don't want to be viewed in the users Web Browser.
  151. </UL>
  152. In most HTML documents ALL of your text is within this tag. In Web Weaver you can use the <I>'HTML Stationery'</I> file to have the proper default tags already created <I>(ie. HTML, head and body)</I>.
  153. If your interested in a more detailed list of HTML features and options checkout these Web pages...
  154. <UL><LI> <A HREF = "http://info.cern.ch/hypertext/WWW/MarkUp/MarkUp.html">http://info.cern.ch/hypertext/WWW/MarkUp/MarkUp.html</A>
  155. <LI> <A HREF = "http://arpp1.carleton.ca/machttp/doc/">http://arpp1.carleton.ca/machttp/doc/</A>
  156. <LI> <A HREF = "http://fire.clarkson.edu/doc/html/htut.html">http://fire.clarkson.edu/doc/html/htut.html</A>
  157. <LI> <A HREF = "http://home.mcom.com/home/how-to-create-web-services.html">http://home.mcom.com/home/how-to-create-web-services.html</A>
  158. <LI> <A HREF = "http://www.ncsa.uiuc.edu/SDG/Software/Mosaic/Docs/fill-out-forms/overview.html">http://www.ncsa.uiuc.edu/SDG/Software/Mosaic/Docs/fill-out-forms/overview.html</A>
  159. <LI> <A HREF = "http://152.1.24.177/teaching/manuscript/default.html">http://152.1.24.177/teaching/manuscript/default.html</A>
  160. </UL>
  161.  
  162.  
  163. <P><HR><CENTER><A NAME="Why WW?"><H2>What does HTML Web Weaver Offer That's Special?</H2></CENTER></A>
  164.  
  165. HTML Web Weaver allows you to easily and quickly create HTML documents by allowing you to write your document and then edit in your tags via a select-and-tag method. HTML Web Weaver also makes more complex HTML tags such as linking to other network services <I>(ie. Gopher, FTP, WAIS and WWW sites)</I> by using a simple information form format.<P>
  166.  
  167. <FONT SIZE=4><B>Why is HTML Web Weaver better than other programs?</B></FONT><BR>
  168. HTML Web Weaver provides you with both a simple and flexible interface, in other words, it's only as complex as you need it to be. HTML Web Weaver is designed to be very modular allowing a simple step to add new functions <I>(specifically HTML tags)</I> using a simple 'plug-in and play' interface <I>(see the file 'Installation Guide' for details)</I>.<P>
  169.  
  170. <FONT SIZE=4><B>Some of the key features of Web Weaver are...</B></FONT>
  171. <UL><LI> Easily customized
  172. <LI> Easy and quick to use
  173. <LI> Provides an easy method of previewing your document
  174. <LI> Provides the most extensive online help
  175. <LI> Includes a large library of HTML features and options
  176. </UL><P> <P>
  177.  
  178. <HR NOSHADE> 
  179. For more information on HTML Web Weaver please contact <a href=mailto:Robert.Best@potsdam.edu>Robert.Best@potsdam.edu</a>
  180. <H6>HTML Web Weaver ¬© 1995 Robert C. Best III</H6>
  181.  
  182.  
  183. </BODY> 
  184. </HTML> 
  185.